- import { setRequestLocale } from "next-intl/server";
- import { FaqClient } from "./faq-client";
- type Props = { params: Promise<{ locale: string }> };
- export default async function FaqPage({ params }: Props) {
- const { locale } = await params;
- setRequestLocale(locale);
- return (
- <div className="page-shell">
- <FaqClient />
- </div>
- );
- }
|